home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / macosx_SecUpd20040524.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  61 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(12519);
  10.  script_version ("$Revision: 1.2 $");
  11.  name["english"] = "Security Update 2004-05-24";
  12.  
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The remote host is missing Security Update 2004-05-24.
  17.  
  18. This security update includes the following components :
  19.  HelpViewer
  20.  
  21. This update fixes a security problem which may allow an attacker
  22. to execute arbitrary commands the on the remote host by abusing
  23. of a flaw in Safari and the components listed above. To exploit
  24. this flaw, an attacker would need to set up a rogue web site with
  25. malformed HTML links, and lure the user of the remote host into
  26. visiting them.
  27.  
  28. Solution : 
  29. http://www.apple.com/downloads/macosx/apple/securityupdate__2004-05-24_(10_3_3).html
  30. http://www.apple.com/downloads/macosx/apple/securityupdate_2004-05-24_(10_2_8).html
  31.                
  32. Risk factor : High";
  33.  
  34.  
  35.  script_description(english:desc["english"]);
  36.  
  37.  summary["english"] = "Check for Security Update 2004-05-24";
  38.  script_summary(english:summary["english"]);
  39.  
  40.  script_category(ACT_GATHER_INFO);
  41.  
  42.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  43.  family["english"] = "MacOS X Local Security Checks";
  44.  script_family(english:family["english"]);
  45.  
  46.  script_dependencies("ssh_get_info.nasl");
  47.  script_require_keys("Host/MacOSX/packages");
  48.  exit(0);
  49. }
  50.  
  51.  
  52. packages = get_kb_item("Host/MacOSX/packages");
  53. if ( ! packages ) exit(0);
  54.  
  55. uname = get_kb_item("Host/uname");
  56. # MacOS X 10.2.8 and 10.3.3 only
  57. if ( egrep(pattern:"Darwin.* (6\.8\.|7\.3\.)", string:uname) )
  58. {
  59.   if ( ! egrep(pattern:"^SecUpd2004-05-24", string:packages) ) security_hole(0);
  60. }
  61.